.news-page-container {
  min-height: 1200px;
}

.news-page .news-page-item {
  width: 410px;
  height: 484px;
  margin-bottom: 24px;
  display: inline-block;
  margin-right: 30px;
  transition: all 0.5s;
}
.news-page .news-page-item:nth-child(3n+3) {
  margin-right: 0;
}
.news-page .news-page-item:hover {
  transform: translateY(-10px);
}
.news-page .news-page-item:hover .news-title .bottom-line{
  width: 100%;
}

.news-page .news-page-item img {
  width: 100%;
  height: 304px;

}

.news-page .news-page-item .news-title {
  height: 180px;
  background: #F9FAFB;
  padding: 17px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.news-page .news-page-item .news-title h3 {
  font-size: 18px;
  font-weight: 300;
  color: #141414;
  line-height: 26px;
}

.news-page .news-page-item .news-title p {
  font-size: 14px;
  font-weight: 300;
  color: #3A3A3A;
  line-height: 20px;
  margin-top: 20px;
}
.news-page .news-page-item .news-title .bottom-line {
  width: 0;
  height: 2px;
  height: 2px;
  background: #16537B;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
}